home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-12 | 1.7 KB | 39 lines | [TEXT/CWIE] |
- pascal Boolean OptionKeyPressed(const EventRecord *theEvent);
- pascal Boolean CtrlKeyPressed(const EventRecord *theEvent);
- pascal Boolean FeatureIsImplemented ( OSType theFeature, short theTestBit );
- pascal Boolean GestaltAvailable(void);
- Boolean IsTrapAvailable(short theTrap);
- pascal long GreaterOf(long A, long B);
- pascal long LesserOf(long A, long B);
- OSErr MakeSelfAddress(AEAddressDesc *selfAddress);
- OSErr AddResultToReply(AEDesc* result, AEDesc* reply, OSErr error);
- OSErr GotRequiredParams(const AppleEvent *theAppleEvent);
-
- OSErr GetEnumeratedFromDescriptor(const AEDesc *sourceDesc, DescType *result);
- OSErr PutEnumeratedToDescriptor(AEDesc* aDesc, unsigned long enumval);
-
- OSErr GetPointFromDescriptor(const AEDesc *sourceDesc, Point *result);
- OSErr PutPointToDescriptor(AEDesc *aDesc, Point pt);
-
- OSErr PutPStringToDescriptor(AEDesc* aDesc, StringPtr pStr);
- OSErr GetPStringFromDescriptor(const AEDesc *aDesc, StringPtr resultStr);
-
- OSErr PutRectToDescriptor(AEDesc* aDesc, Rect theRect);
- OSErr GetRectFromDescriptor(const AEDesc *sourceDesc, Rect *result);
-
- OSErr GetHandleFromDescriptor(const AEDesc* sourceDesc, Handle resultHandle, long theType);
- OSErr PutHandleToDescriptor(AEDesc* aDesc, Handle thedata, long theType);
-
- OSErr GetLongIntFromDescriptor(const AEDesc *sourceDesc, long *result);
- OSErr PutLongIntToDescriptor(AEDesc* aDesc, long val);
-
- OSErr GetIntegerFromDescriptor(const AEDesc *sourceDesc, short *result);
- OSErr PutIntegerToDescriptor(AEDesc* aDesc, short val);
-
- OSErr GetBooleanFromDescriptor(const AEDesc *sourceDesc, Boolean *result);
- OSErr PutBooleanToDescriptor(AEDesc* aDesc, Boolean val);
-
- void GetRawDataFromDescriptor(const AEDesc *theDesc, Ptr destPtr, Size destMaxSize, Size *actSize);
-
-
- extern Boolean gIgnoreThisAppleEvent;